home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 405 b | 31 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class LINK_LIST_BENCH
-
- inherit BENCH;
-
- creation make
-
- feature
-
- cltn: LINK_LIST[INTEGER];
-
- make is
- local
- i: INTEGER;
- do
- from
- !!cltn.make;
- i := count;
- until
- i = 0
- loop
- cltn.add_last(0);
- i := i - 1;
- end;
- bench;
- end;
-
- end
-